std::stack::emplace

From Cppreference

Jump to: navigation, search
template< class... Args >
void emplace( Args&&... args );
(C++0x)

Pushes new element on top of the stack. The element is constructed in-place, i.e. no copy or move operations are performed. The constructor of the element is called with exactly the same arguments, as supplied to the function.

Effectively calls ​c.emplace_back(std::forward<Args>(args)...)

Contents

Parameters

args - arguments to forward to the constructor of the element

Return value

(none)

Complexity

See also

push
inserts element at the top
(public member function)
pop
removes the top element
(public member function)
Personal tools
Namespaces
Variants
Actions
Navigation
Toolbox
In other languages